home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Power Tools
/
Programmer Power Tools.iso
/
c
/
jazlib.arc
/
COLOR.C
< prev
next >
Wrap
Text File
|
1986-04-06
|
813b
|
20 lines
/*
┌────────────────────────────────────────────────────────────────────────────┐
│ Color.c │
│ Set the global colors used with the window and wprintf routines │
│ Usage │
│ color(WHITE,BLUE); │
│ │
│ (C) JazSoft Software by Jack A. Zucker (301) 794-5950 │
└────────────────────────────────────────────────────────────────────────────┘
*/
extern int g_fore,g_back,_attr;
color( ffore , fback )
int ffore , fback;
{
g_fore = ffore;
g_back = fback;
_attr = g_back * 16 | g_fore & 0x7f;
}